home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Workspace / Locus / Source / InspectorPane.h < prev    next >
Text File  |  1995-06-12  |  783b  |  55 lines

  1.  
  2. /*
  3.     Copyright 1993  Jeremy Slade.  All rights reserved.
  4. */
  5.  
  6. /*
  7.     Project: Locus
  8.     
  9.     Class: InspectorPane
  10.     
  11.     Description:
  12.     [ FULL DESCRIPTION ]
  13.     
  14.     Original Author: Jeremy Slade
  15.     
  16.     Revision History:
  17.         Created
  18.             V.101    JGS Mon Feb  8 22:27:38 GMT-0700 1993
  19.             
  20. */
  21.  
  22.  
  23. #ifndef InspectorPane_h
  24. #define InspectorPane_h
  25.  
  26. #define InspectorPane_VERSION    (101)
  27.  
  28.  
  29. #import <appkit/Panel.h>
  30.  
  31.  
  32. @interface InspectorPane : Panel
  33. {
  34.     id    target;    // Object being inspected
  35. }
  36.  
  37. // Creating, initializing
  38. + initialize;
  39. - initContent:(const NXRect *)contentRect
  40.     style:(int)aStyle
  41.     backing:(int)bufferingType
  42.     buttonMask:(int)mask
  43.     defer:(BOOL)flag;
  44. - free;
  45.  
  46. // General InspectorPane behavior
  47. - inspect:anObject;
  48. - (BOOL)canInspect:anObject;
  49. - inspecting;
  50. - showCurrent:sender;
  51.  
  52. @end
  53.  
  54. #endif // InspectorPane_h
  55.